home *** CD-ROM | disk | FTP | other *** search
/ Amiga Game-Power / Amiga Game-Power.iso / pd mix ii / access / thai / mklower.c < prev    next >
C/C++ Source or Header  |  1994-05-20  |  135b  |  14 lines

  1.  
  2. #include <stdio.h>
  3. #include <ctype.h>
  4.  
  5.  
  6. int
  7. mklower ( c )
  8. int c;
  9. {
  10.     if ( isupper ( c ) )
  11.         return ( tolower ( c ) );
  12.     return ( c );
  13. }
  14.